@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

#wrapper{
    width: 960px;
    min-height: 1000px;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    font-family: 'Market Sans', 'Helvetica Neue', sans-serif;
}

body{
background-color: rgb(255, 255, 255);
}

header{
    padding-top: 10px;
    padding-bottom: 10px;
    height: 135px;
    text-align: center;
}

nav {
    /* Position Navigation */
    text-align: center;
    padding-bottom: 0px;
}
  
nav ul {
    /* Auflistungssymbole */
    list-style-type: none;
    width: 895px;
    padding-bottom: 20px;
}
  
nav li {
    /* Formatierung Navigation */
    font-family: 'Market Sans', 'Helvetica Neue', sans-serif;
    font-size: 1em;
    display: inline;
    margin-right: 6%;
}


.mapmarker{
    margin-top: 0px;

}

a{
    color: #777;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;         /* font-family = 1. Font wird probiert, wenn nicht -> 2. Font */
}

h1{
    font-size: 2.3em;
    font-family: 'Poppins', sans-serif;
}

h1 span{
    color: rgb(74, 204, 124);
}

.anschdaten{
    padding-top: 5px;
}

.trennstrich{
    text-align: center;
    color: rgb(212, 212, 212);
    padding-bottom: 20px;
}

.erfolg{
    color: rgb(74, 204, 124);
    margin-top: -20px;
}

legend{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

form{
    border: 1px solid rgb(219, 219, 219);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    -webkit-animation: shadow-drop-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: shadow-drop-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0s;
}

@-webkit-keyframes shadow-drop-center {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
              box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
}
@keyframes shadow-drop-center {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
              box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
}

input{
    width: 35%;     /* Länge der Felder */
    padding: 2px;   /* Höhe der Felder */
    border: 1px solid rgb(212, 212, 212);
    border-radius: 3px;
}

select{
    width: 35%;     /* Länge der Felder */
    padding: 0px;   /* Höhe der Felder */
    border: 1px solid rgb(212, 212, 212);
    border-radius: 3px;

}

textarea{
    width: 99.5%;
    border: 1px solid rgb(212, 212, 212);
    border-radius: 3px;
    resize: vertical;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: left;
    
}

::placeholder{
    font-size: 12px;
    color: rgb(70, 70, 70);

}

form{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

/* Versenden Knopf */


button{
    text-align: center;
    font-size: 18px;
    background: rgb(74, 204, 124);
    background: -webkit-linear-gradient(to right, #438846, #1cc568, rgb(47, 56, 187));
    background: linear-gradient(to right, #64bb68, rgb(73, 144, 202));
    padding: 10px 60px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4);

}

button a{
    position: relative; 
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

/* Hover Animation */

button:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #109e23;
    transition: all 0.35s;
    border-radius: 4px;
}

button:hover{
    color: #fff;
    box-shadow: 0px 47px 20px -20px rgba(0, 0, 0, 0.2);
    transform: translate(0px, -10px);
}


button:hover:after{
    width: 100%;

}

footer{
    height: 50px;
    clear: both;
    background: rgb(255, 255, 255);
    padding-bottom: 25px;
    padding-top: 10px;
}

footer ul{
    float: left;
    list-style: none;
    padding-top: 3px;
    padding-left: 0px;
    margin: 20px;
    font-size: 15px;
}

.facebook{
    float: left;
    padding-top: 19px;
    padding-left: 20px;
}

.insta{
    float: left;
    padding-top: 19px;
}

footer li{
    margin-right: 15px;
    display: inline;

}

footer img{
    margin-right: 20px;
    float: right;
}

footer p{
    font-size: 10px;
    float: right;
    padding-right: 20px;
    padding-top: 14px;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

@media (max-width: 1000px) {
    .trennstrich {
        display:none ;
    }
    .anschdaten {
        padding-bottom: 54px;
    
    }

}